home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / OC GeForce2.xpl < prev    next >
Text File  |  2002-12-19  |  2KB  |  45 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="7"
  3. "COUNT"="2"
  4. "UIPATH"="Hardware\Video Cards\NVidia\GeForce"
  5. "NAME"="GeForce Overclocker NEW"
  6. "LANGUAGE"="VBScript"
  7. "TEXT 1"="Add GeForce Overclocking tab"
  8. "TEXT 2"="Remove GeForce Overclocking tab"
  9. "DESCRIPTION 1"="This adds the ability to overclock your NVidia GeForce/2/3/4/FX or Quadro/2/3/4/FX video card by adding a new Hardware Overclocking tab to your Display Properties under the NVidia GeForce tab to tweak GPU and/or Memory core frequencies for faster performance."
  10. "DESCRIPTION 2"="NOTE #1: For more info go to http://www.technologyvault.co.uk/geforce/faq.php"
  11. "DESCRIPTION 3"="NOTE #2: In most cases this is harmless. If experiencing ANY problems, simply reboot and set them back to original (default) settings. This may not work on all computer configurations."
  12. "DESCRIPTION 4"="NOTE #3: This works ONLY with newer Detonator drivers 32.xx, 4x.xx and (probably) future versions."
  13. "DESCRIPTION 5"="WARNING: You MUST agree to do this at your own risk!"
  14. "VERSION"="1.0"
  15. "AUTHOR"="Xteq Systems"
  16. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  17. "CONTACTURL"="http://www.xteq.com/"
  18. "COMMENT 1"="Critical Plug-in!"
  19. "WARNING"="1"
  20.  
  21.  
  22. '
  23. SUB Plugin_Initialize
  24. call setuielement(1,true)
  25. END SUB
  26. SUB Plugin_CheckData(ElementIndex)
  27. END SUB
  28. SUB Plugin_Apply(ElementIndex,ElementSubIndex)
  29. b = getuielement(1)
  30. if b = true then
  31. call RegWriteValue("HKLM\Software\NVIDIA Corporation\Global\NVTweak\Coolbits",4294967295,2)
  32. MsgInformation("Overclocking tab added. Right-click on your Desktop, select Properties and click the NVidia GeForce tab to use it.")
  33. Restart
  34. else
  35. if regpathexists("HKLM\Software\NVIDIA Corporation\Global\NVTweak") then
  36. call RegDeletePath("HKLM\Software\NVIDIA Corporation\Global\NVTweak")
  37. MsgInformation("Overclocking tab removed.")
  38. Restart
  39. else
  40. msginformation("Nothing to Delete.")
  41. end if
  42. end if
  43. END SUB
  44. SUB Plugin_Terminate
  45. END SUB